home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 1997 March / inter@ivo 1997-03.iso / wing / doggie.rc_ / doggie.rc
Text File  |  1994-08-13  |  2KB  |  44 lines

  1. /**************************************************************************
  2.  
  3.     DOGGIE.RC - a sprite demo for WinG
  4.  
  5.  **************************************************************************/
  6. /**************************************************************************
  7.  
  8.     (C) Copyright 1994 Microsoft Corp.  All rights reserved.
  9.  
  10.     You have a royalty-free right to use, modify, reproduce and 
  11.     distribute the Sample Files (and/or any modified version) in 
  12.     any way you find useful, provided that you agree that 
  13.     Microsoft has no warranty obligations or liability for any 
  14.     Sample Application Files which are modified. 
  15.  
  16.  **************************************************************************/
  17.  
  18. #include <windows.h>
  19. #include "doggie.h"
  20.  
  21. AppIcon  ICON    doggie.ico
  22.  
  23. Doggie BITMAP doggie2.bmp
  24.  
  25. AppAbout DIALOG 22, 17, 144, 75
  26. STYLE WS_POPUP | WS_DLGFRAME
  27. BEGIN
  28.     CTEXT "Microsoft Windows"                   -1, 37,  5, 60, 8
  29.     CTEXT "WinG Sample Application"             -1,  0, 14, 144, 8
  30.     CTEXT "Version 1.00"                        -1, 38, 34, 64, 8
  31.     CTEXT "Copyright (c) 1994 Microsoft Corp."     -1,  5, 47,132, 9
  32.     ICON  "AppIcon"                             -1,  9, 23,  0, 0
  33.     DEFPUSHBUTTON "OK"                        IDOK, 53, 59, 32, 14, WS_GROUP
  34. END
  35.  
  36. AppMenu menu
  37. begin
  38.     POPUP "&File"
  39.         begin
  40.             MENUITEM "&About..."         , MENU_ABOUT
  41.             MENUITEM "E&xit"             , MENU_EXIT
  42.         end
  43. end
  44.